pact_matching 2.0.3

Pact-Rust support library that implements request and response matching logic
Documentation
{
  "match": true,
  "comment": "Queries are the same - multiple values are in same order",
  "expected" : {
    "method": "GET",
    "path": "/path",
    "query": {
      "animal": ["alligator", "hippo", "elephant"],
      "hippo": ["Fred"]
    },
    "headers": {}
  },
  "actual": {
    "method": "GET",
    "path": "/path",
    "query": {
      "hippo": ["Fred"],
      "animal": ["alligator", "hippo", "elephant"]
    },
    "headers": {}
  }
}